@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  
  section {
    padding: 5px 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: left;
    gap: 5rem;
  }
  
.faixa-topo h1 {
    font-size: 32px;
    color: #fff;
    margin: 0;
    font-weight: bold;
    text-align: center;
    background-color: #064081;
    padding: 20px;
}

.faixa-topo em {
  font-style: italic;
}

 .custom-section {
  width: 100%;
  padding: 80px 5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  color: white;
  position: relative;
  z-index: 1;
}

.custom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* camada escura sobre imagem */
  z-index: 0;
}

.custom-section .content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.section-empresas {
  background-image: url('images/6.png');
}

 .custom-section-2 {
  width: 100%;
  padding: 80px 5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  color: white;
  position: relative;
  z-index: 1;
}

.custom-section-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 59%); /* camada escura sobre imagem */
  z-index: 0;
}

.custom-section-2 .content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.cta-buttons a {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffba00;
  color: #121212;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
  background-color: #c79100;
}

.cta-buttons-2 a {
  display: inline-block;
  padding: 12px 25px;
  background-color: #005baa;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.cta-buttons-2 a:hover {
  background-color: #003e7e;
}

  
  section h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  section p {
    color: #fff;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
  }
  
  .cta-buttons{
    text-align: center;
  }


.redirect {
    width: 100%;
    background: #ffffff; /* Cor de fundo clara e neutra */
    padding: 60px 20px;
    margin: 40px 0;
    text-align: center;
}

.redirect h4 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.redirect p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background-color: #ffba00;
    border-radius: 10px;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0a800;
    color: #fff;
}


  
  footer {
    background-color: #064081;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #ffffff;
  }

  @media (max-width: 1000px) {
  .faixa-topo h1 {
      font-size: 25px;
  }
  
  .navbar-center p{
      display: none;
  }
  
  section {
      padding: 30px 30px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 0rem;
      flex-direction: column;
  }
  
  footer {
      background-color: #064081;
      text-align: center;
      padding: 30px;
      font-size: 15px;
      color: #ffffff;
  }
}
  